home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr36 / putt100.zip / JAMUTILW.ZIP / MAKEFILE.ZTC < prev    next >
Text File  |  1993-07-01  |  1KB  |  39 lines

  1. #
  2. #   JAM(mbp) - The Joaquim-Andrew-Mats Message Base Proposal
  3. #
  4. #   JAM Windows Utility
  5. #
  6. #   Written by Mats Wallin
  7. #
  8. #   ----------------------------------------------------------------------
  9. #
  10. #   makefile (JAMmb)
  11. #
  12. #   Make file for JAM(mbp) JAMUTIL (Windows) and Zortech C++ 3.x
  13. #
  14. #   NOTE! ZRC is not able to handle the Version Resource
  15. #         To use the ZRC resource compiler, the Version Resource should be
  16. #         removed from the JAMUTILW.RC file
  17. #
  18. #   Copyright 1993 Joaquim Homrighausen, Andrew Milner, Mats Birch, and
  19. #   Mats Wallin. ALL RIGHTS RESERVED.
  20. #
  21. CMDL    = s
  22. CC      = ztc
  23. RC      = rc
  24. #RC      = zrc
  25. COPT    = -o+all
  26. CFLAGS  = -c -2 -m$(CMDL) $(COPT) -W -r -w- -D_WINDOWS -a1
  27.  
  28. OBJS    = jamutilw.obj
  29. LIBS    = ..\jamapi.lib
  30. DEF     = jamutilw.def
  31. DLGS    = jamutilw.dlg
  32.  
  33. .c.obj:
  34.         $(CC) $(CFLAGS) $*.c
  35.  
  36. jamutilw.exe:   $(OBJS) $(DEF) $(DLGS)
  37.         blink /al:16 /noi /map $(OBJS), $@, $*, $(LIBS), $(DEF)
  38.         $(RC) -t $* $@
  39.